home *** CD-ROM | disk | FTP | other *** search
/ Virtual Reality StarterKit / Virtual Reality StarterKit.iso / swt / vrs / copyfile.swt / SWTGAME.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-10-12  |  2.3 KB  |  89 lines

  1. @echo off
  2. :start 
  3. cls
  4. echo *****************************************************************************
  5. echo *        S O P H I S T E C H     R E S E A R C H    P R E S E N T S         *
  6. echo *                                                                           *
  7. echo *                                  The                                      *
  8. echo *                           Virtual Reality Sourcebook                      *
  9. echo *                        Interactive Multimedia Database                    *
  10. echo *                          (VR StarterKit Version 1.0)                      *
  11. echo *                                                                           *
  12. echo *                   Copyright (c) 1993 --- SophisTech Research              *
  13. echo *                                                                           *
  14. echo *   We encourage you to tell your friends and associates about the Virtual  * 
  15. echo *   Reality Sourcebook. For orders, call 1-(800) 4VR-SOURce                 *
  16. echo *****************************************************************************
  17. echo.
  18. echo  Choose one of the selections below:
  19. echo.
  20. echo     1. RUN Virtural Reality Information. 
  21. echo     2. SETUP the configuration.  (Re-configure existing hardware)
  22. echo     3. QUIT.
  23. echo.
  24. echo     Please enter the number for your choice;   Enter 1-3 only.
  25. query
  26.  
  27. if errorlevel = 4 goto invalid
  28. if errorlevel = 3 goto end
  29. if errorlevel = 2 goto reset
  30. if errorlevel = 1 goto run
  31.  
  32. :invalid
  33. cls
  34. echo Invalid option
  35. goto start
  36. goto end
  37.  
  38. REM Run game   
  39. :run
  40. mode co80
  41. cls
  42. IF EXIST SETUP.VI goto STARTGAME
  43. install %1 %2 %3 %4 %5 %6 %7 %8 %9
  44. cls
  45. IF EXIST SETUP.VI goto STARTGAME
  46. goto SETUP
  47.  
  48. :STARTGAME
  49. IF EXIST LPG.* goto RUNPROG
  50. @echo * 
  51. @echo *  
  52. @echo *    
  53. @echo      Please wait, Program decompressing and preparing runtime files    
  54. runtime
  55. del lpg.*
  56. goto ENDPROG
  57. :SETUP
  58. @echo *
  59. @echo    * 
  60. @echo      *  
  61. @echo        SETUP and system configuration is missing, please run SETUP option.
  62. @echo      *
  63. @echo    *
  64. @echo *
  65. pause
  66. goto start
  67. goto ENDPROG
  68. :RUNPROG
  69. del lpg.*
  70. @echo      Please wait, Program decompressing and preparing runtime files    
  71. runtime
  72. del lpg.*
  73. goto ENDPROG
  74. :ENDPROG
  75. cls
  76. goto end
  77.  
  78. REM reconfig setup
  79. :reset
  80. cls
  81. echo.
  82. install %1 %2 %3 %4 %5 %6 %7 %8 %9
  83. goto start
  84. goto end 
  85.  
  86. :end
  87.  
  88.  
  89.